*** empty log message ***
authorKim F. Storm <storm@cua.dk>
Thu, 24 Aug 2006 21:18:13 +0000 (21:18 +0000)
committerKim F. Storm <storm@cua.dk>
Thu, 24 Aug 2006 21:18:13 +0000 (21:18 +0000)
etc/NEWS
lisp/ChangeLog
src/ChangeLog

index 4b8f564a042d208076efddd05b6c16592a910517..aefb11ccb2d71173a07f877a07f4a0bb6753bbfb 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -839,6 +839,13 @@ The variable `automatic-hscrolling' was renamed to
 the window now works sensibly, by automatically adjusting the window's
 vscroll property.
 
+*** New customize option `overline-margin' controls the space between
+overline and text.
+
+*** New variable `x-underline-at-descent-line' controls the relative
+position of the underline.  When set, it overrides the
+`x-use-underline-position-properties' variables.
+
 +++
 *** The new face `mode-line-inactive' is used to display the mode line
 of non-selected windows.  The `mode-line' face is now used to display
index 214b6a3615cb2ad05b5e3fe5bd9d9801e7696bee..9e56b2e9f4b17afdfe649468f910c105d1169177 100644 (file)
@@ -1,3 +1,8 @@
+2006-08-24  Francesc Rocher  <francesc.rocher@gmail.com>
+
+       * cus-start.el (all): Add `overline-margin' and
+       `x-underline-at-descent-line'.
+
 2006-08-24  Kim F. Storm  <storm@cua.dk>
 
        * progmodes/grep.el (grep-find-use-xargs): Use explicit value `exec'
index fd6e83370f031777f831c822a5b0cc7e0594252f..84ddcf50077a7826b1d9c286671bbac4cf5f32af 100644 (file)
@@ -1,4 +1,20 @@
-2006-08-25  Nick Roberts  <nickrob@snap.net.nz>
+2006-08-24  Francesc Rocher  <francesc.rocher@gmail.com>
+
+       * xdisp.c (overline_margin): New variable.
+       (x_produce_glyphs): Use it.
+       (syms_of_xdisp): DEFVAR_INT it.
+
+       * xterm.c (x_underline_at_descent_line): New variable.
+       (syms_of_xterm): DEFVAR_BOOL it.
+       (x_draw_glyph_string): Use it.
+       Draw underline and overline up to the end of line if the face
+       extends to the end of line.
+
+       * macterm.c: Likewise.
+
+       * w32term.c: Likewise.
+
+2006-08-24  Nick Roberts  <nickrob@snap.net.nz>
 
        * buffer.c (Fswitch_to_buffer): Move buffer to front of
        buffer-alist if necessary.